home *** CD-ROM | disk | FTP | other *** search
/ Java Programmer's Toolkit / Java Programmer's Toolkit.iso / applets / collectn / immutabl.jav < prev    next >
Text File  |  1995-10-14  |  1KB  |  41 lines

  1. /*
  2.   File: Immutable.java
  3.  
  4.   Originally written by Doug Lea and released into the public domain. 
  5.   Thanks for the assistance and support of Sun Microsystems Labs, Agorics 
  6.   Inc, Loral, and everyone contributing, testing, and using this code.
  7.  
  8.   History:
  9.   Date     Who                What
  10.   24Sep95  dl@cs.oswego.edu   Create from collections.java  working file
  11.   13Oct95  dl                 Renamed just to `Immutable'
  12.  
  13. */
  14.   
  15. package collections;
  16.  
  17. import java.util.Enumeration;
  18. import java.util.NoSuchElementException;
  19.  
  20. /**
  21.  *
  22.  * Immutable is a root interface of immutable classes; i.e.,
  23.  * those with objects that may be looked at but not updated. 
  24.  * By necessity in Java, all implementation classes supporting
  25.  * interface Immutable must be <CODE>final</CODE> classes.
  26.  * <P>
  27.  * There are
  28.  * no operations defined in this interface. This interface is used only
  29.  * to provide a name for this `Purity' property.
  30.  * @author Doug Lea
  31.  * @version 0.93
  32.  *
  33.  * <P> For an introduction to this package see <A HREF="index.html"> Overview </A>.
  34. **/
  35.  
  36. public interface Immutable {
  37.  
  38. }
  39.  
  40.  
  41.